home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / business / lm150cd.zip / C.BAT < prev    next >
DOS Batch File  |  1993-12-31  |  1KB  |  41 lines

  1. echo off
  2. cls
  3. if not exist cicust.blk   goto fail1
  4. if not exist ciaddr.blk   goto fail1
  5. if not exist ciphone.blk  goto fail1
  6. if not exist ciremind.blk   goto fail1
  7. echo.
  8. echo.
  9. echo.   ┌─────────────────────────────────────────────────────────────────┐
  10. echo.   │   This procedure will replace all CUSTOMER data files with      │
  11. echo.   │   NEW, BLANK, files. All old CUSTOMER data will be lost.        │
  12. echo.   │                                                                 │
  13. echo.   │   Existing LOAN data will not be changed.                       │
  14. echo.   │                                                                 │
  15. echo.   │                                                                 │
  16. echo.   │                           PRESS Ctrl+C to abort this process.   │
  17. echo.   └─────────────────────────────────────────────────────────────────┘
  18. echo.
  19. echo.
  20. echo.
  21. pause
  22. copy CI*.BLK CI*.DBF
  23. goto end
  24. :fail1
  25. cls
  26. echo.
  27. echo.      ┌────────────────────────────────────────────────────────────────┐
  28. echo.      │  The requested sample customer data files are not present.     │
  29. echo.      │                                                                │
  30. echo.      │                                                                │
  31. echo.      │                   Has the system been installed properly?      │
  32. echo.      └────────────────────────────────────────────────────────────────┘
  33. echo.
  34. echo.
  35. pause
  36. :end
  37. testmenu
  38.  
  39.  
  40.  
  41.